* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", serif;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: black;
  font-family: "Poppins", serif;
}

a {
  text-decoration: none;
  color: black;
}

.navbar {
  display: flex;
  justify-content: space-between;
  width: 90%;
  padding: 10px;
  gap: 20px;
  font-size: 14px;
}

.navbar .logo {
  padding: 10px;
}

.navbar .menu {
  list-style: none;
  display: flex;
}

.menu-item {
  position: relative;
}

.navbar .menu .menu-item a {
  text-decoration: none;
  color: black;
  padding: 10px;
  display: block;
}

.navbar .menu .menu-item a:hover {
  background-color: black;
  color: white;
  border-radius: 10px;
}

.navbar .menu .menu-item .dropdown {
  position: absolute;
  z-index: 100;
  width: 200px;
  background-color: white;
  color: black;
  list-style: none;
  display: none;
  box-shadow: 0 8px 16px black;
  border-radius: 15px;
  border: 2px solid white;
}

.navbar .menu .menu-item .dropdown li a {
  text-decoration: none;
  color: black;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
}

.navbar .menu .menu-item .dropdown li a:hover {
  background-color: black;
  color: white;
}

.navbar .menu .menu-item:hover .dropdown {
  display: flex;
  flex-direction: column;
}

.navbar .icons {
  display: flex;
  gap: 20px;
  padding: 10px;
}

.header-two {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dotted black;
  width: 90%;
  position: sticky;
  top: 0;
  background-color: white;
  font-size: 14px;
  font-weight: bold;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.hero img {
  width: 90%;
}

.hero .hero_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.hero .hero_text h1 {
  font-size: 18px;
}

.hero .hero_text p {
  font-size: 12px;
  width: 600px;
}

.flexcam {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 80px;
  width: 90%;
}

.flexcam video {
  width: 90%;
}

.accurate {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 90%;
  background-color: black;
  color: white;
  margin-top: 80px;
}

.accurate .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px;
  gap: 5px;
}

.accurate .text p {
  font-size: 12px;
  width: 600px;
}

.accurate .text h1 {
  font-size: 29px;
}

.best_deal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
  gap: 50px;
  width: 90%;
  margin-top: 80px;
}

.best_deal .text {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.best_deal .imgg {
  display: flex;
  gap: 50px;
  width: 100%;
  overflow-x: scroll;
}

.best_deal .imgg::-webkit-scrollbar {
  display: none;
}

.sentence {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  gap: 20px;
  margin-top: 80px;
  border-top: 2px solid black;
  background-color: #f9f9f9;
}

.sentence .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: smaller;
  width: 90%;
  margin-top: 30px;
  margin-bottom: 30px;
}

.footer {
  background-color: #f9f9f9;
  border-top: 2px dotted black;
  padding: 20px 50px;
  width: 90%;
  margin-top: 50px;
}

.footer-sections {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  min-width: 180px;
  margin-right: 20px;
}

.footer-column h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  font-size: 11px;
  text-decoration: none;
  color: #333;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 11px;
  color: #666;
  margin: 5px 0;
}

.footer-bottom p a {
  text-decoration: none;
  color: #333;
}

.footer-bottom p a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 10px;
}

.social-icons span {
  display: block;
  font-size: 11px;
  margin-bottom: 8px;
}
